From: Ian Campbell Date: Mon, 14 Dec 2015 16:21:31 +0000 (+0000) Subject: xen: arm: Drop trailing ; from DEFINE_XEN_GUEST_HANDLE X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2092 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22%22/%22http:/www.example.com/cgi/%22https:/%22%22?a=commitdiff_plain;h=6285ff920dfc42eb15890b8877da72aa9bae8592;p=xen.git xen: arm: Drop trailing ; from DEFINE_XEN_GUEST_HANDLE This is always present at the point of use, which with -pedantic provokes: error: ISO C does not allow extra ';' outside of a function [-Werror=edantic] Signed-off-by: Ian Campbell Acked-by: Stefano Stabellini Acked-by: Jan Beulich --- diff --git a/xen/include/public/arch-arm.h b/xen/include/public/arch-arm.h index 6322548932..870bc3b78b 100644 --- a/xen/include/public/arch-arm.h +++ b/xen/include/public/arch-arm.h @@ -173,7 +173,7 @@ typedef union { type *p; unsigned long q; } \ __guest_handle_ ## name; \ typedef union { type *p; uint64_aligned_t q; } \ - __guest_handle_64_ ## name; + __guest_handle_64_ ## name /* * XEN_GUEST_HANDLE represents a guest pointer, when passed as a field